home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #10 / Software USA Volume 4.10.iso / mac / Educational / HTML Vocabulary / HTML Vocabulary 2.0 / HTML Vocabulary 2.0.rsrc / TEXT_1700_Lists.txt < prev    next >
Text File  |  1996-09-28  |  2KB  |  36 lines

  1.  
  2. About Lists    
  3. There are three different liststyles and two less supported styles. All of them can include new lists. There are also two other tags which works about the same as the others. These are MENU and DIR, but they are not supported in all browsers, appears like unordered lists in Netscape Navigator and they are not recommended to use.
  4.  
  5. Unordered Lists    
  6. <UL [TYPE="disc|circle|square"]>...</UL>
  7. Stands for 'unordered list'. By default, each list item will be indicated by a bullet (‚Ä¢). You may change this using TYPE, between DISC (‚Ä¢), CIRCLE (¬∞) and SQUARE (‚Ǩ).
  8.  
  9. <LH>...</LH>
  10. Stands for 'list header'. Use it in the beginning of the list to show the title of the list.
  11.  
  12. <LI [TYPE="disc|circle|square"]>...[</LI>]
  13. Stands for 'list item'. Starts a new line and inserts the choosed icon. It should be used within the <UL> tags, but it's not neccessary.
  14.  
  15. Ordered Lists    
  16. <OL [TYPE="1|A|a|I|i"] [START="n¬†"]>...</OL>
  17. Start a new ordered list in the same way as <UL>, with the difference that each listitem will be numbered. TYPE changes the type to use, either numbers, upper- or lowercase letters or upper- or lowercase Roman numbers. START is the first number of the enumeration, by default 1.
  18.  
  19. <LH>...</LH>
  20. Stands for 'list header'. Use it in the beginning of the list to show the title of the list.
  21.  
  22. <LI [TYPE="1|A|a|I|i"] [VALUE="n¬†"]>...[</LI>]
  23. Stands for 'list item'. VALUE is a Netscape extension, part of HTML 3.2, that changes the sequential order of the item, which also take affect on the following items.
  24.  
  25. Definition Lists    
  26. <DL>...</DL>
  27. Starts a defined list. A definition list is a list of items that are defined. The items and the definitions are, in some way, different. Usually, the definitions will be displayed a few pixels right from the left of the window.
  28.  
  29. <LH>...</LH>
  30. Stands for 'list header'. Use it in the beginning of the list.
  31.  
  32. <DT>...[</DT>]
  33. Stands for 'defined tag' (or 'definition term'). Inserts a new item in the list.
  34.  
  35. <DD>...[</DD>]
  36. The definition of an item.